home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / skins / Border.as next >
Encoding:
Text File  |  2008-10-29  |  495 b   |  25 lines

  1. package mx.skins
  2. {
  3.    import mx.core.EdgeMetrics;
  4.    import mx.core.IBorder;
  5.    import mx.core.mx_internal;
  6.    
  7.    use namespace mx_internal;
  8.    
  9.    public class Border extends ProgrammaticSkin implements IBorder
  10.    {
  11.       mx_internal static const VERSION:String = "3.0.0.0";
  12.       
  13.       public function Border()
  14.       {
  15.          super();
  16.       }
  17.       
  18.       public function get borderMetrics() : EdgeMetrics
  19.       {
  20.          return EdgeMetrics.EMPTY;
  21.       }
  22.    }
  23. }
  24.  
  25.